home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Atari Compendium
/
The Atari Compendium (Toad Computers) (1994).iso
/
files
/
prgtools
/
gnustuff
/
tos
/
progut~1
/
stdwin.zoo
/
gen
/
perror.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1989-10-17
|
229 b
|
17 lines
/* STDWIN -- UNIVERSAL WPERROR. */
#include "tools.h"
#include "stdwin.h"
/* STDWIN equivalent of perror(). */
void
wperror(name)
char *name;
{
char buf[256];
sprintf(buf, "%s: Error %d.", name, errno);
wmessage(buf);
}